RapidSpellDialog + RapidSpellAsYouType

To provide a coherent user experience when both RapidSpellDialog and RapidSpellAsYouType check the same text box, it is necessary to use the RapidSpellAYTDialogCoupler component. This component (which can be added to the IDE tool box) is a simple way to connect the 2 types of spell checkers, ensuring that modifications made in one, are reflected in the other. For example, if the user clicks "Ignore All" in the as-you-type spell checker, then that word should also be ignored in the dialog checker.

Example code

//c#
rapidSpellAYTDialogCoupler1 = new RapidSpellAYTDialogCoupler();
rapidSpellAYTDialogCoupler1.RapidSpellDialog = rapidSpellDialog1;
rapidSpellAYTDialogCoupler1.RapidSpellAsYouType = rapidSpellAsYouType1;

'VB.NET
rapidSpellAYTDialogCoupler1 = New RapidSpellAYTDialogCoupler()
rapidSpellAYTDialogCoupler1.RapidSpellDialog = rapidSpellDialog1
rapidSpellAYTDialogCoupler1.RapidSpellAsYouType = rapidSpellAsYouType1